summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSquall Leonhart <danialhorton@hotmail.com>2023-10-15 19:29:24 +0200
committerGitHub <noreply@github.com>2023-10-15 19:29:24 +0200
commit4b0291172eed95df5f491d03b68ff6243b61793a (patch)
tree3423336abf5f53a92614815017db24b6123ef3b7
parentuse texelfetch instead of texturelod (diff)
downloadyuzu-4b0291172eed95df5f491d03b68ff6243b61793a.tar
yuzu-4b0291172eed95df5f491d03b68ff6243b61793a.tar.gz
yuzu-4b0291172eed95df5f491d03b68ff6243b61793a.tar.bz2
yuzu-4b0291172eed95df5f491d03b68ff6243b61793a.tar.lz
yuzu-4b0291172eed95df5f491d03b68ff6243b61793a.tar.xz
yuzu-4b0291172eed95df5f491d03b68ff6243b61793a.tar.zst
yuzu-4b0291172eed95df5f491d03b68ff6243b61793a.zip
-rw-r--r--src/video_core/renderer_vulkan/vk_texture_cache.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_texture_cache.cpp b/src/video_core/renderer_vulkan/vk_texture_cache.cpp
index f913a99b9..a4ee9295f 100644
--- a/src/video_core/renderer_vulkan/vk_texture_cache.cpp
+++ b/src/video_core/renderer_vulkan/vk_texture_cache.cpp
@@ -1236,7 +1236,9 @@ void TextureCacheRuntime::ConvertImage(Framebuffer* dst, ImageView& dst_view, Im
}
break;
case PixelFormat::D32_FLOAT:
- if (src_view.format == PixelFormat::A8B8G8R8_SRGB ||
+ if (src_view.format == PixelFormat::A8B8G8R8_UNORM ||
+ src_view.format == PixelFormat::B8G8R8A8_UNORM ||
+ src_view.format == PixelFormat::A8B8G8R8_SRGB ||
src_view.format == PixelFormat::B8G8R8A8_SRGB) {
return blit_image_helper.ConvertABGR8ToD32F(dst, src_view);
}